home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Present…nuary (Partner) - Disc 2 / The Apple Reference and Presentations Library (Disc 2)(January 1994).iso / Diehl Graphsoft / German / MiniCad / MiniCad-PPC / MiniCad 5.0.1-D / MiniCad 5.0.1-D.rsrc / STR#_7027.txt < prev    next >
Text File  |  1994-10-06  |  1KB  |  37 lines

  1. Returns the name of the indexth field attached to the record connected to RecordHandle.
  2.  
  3. GetFldName(RecordHandle : HANDLE, Index : INTEGER) : STRING;
  4.  
  5. Returns a handle to the indexth record attached to the object connected to ObjectHandle. If ObjectHandle = nil, returns the indexth record in the drawing.
  6.  
  7. GetRecord(ObjectHandle : HANDLE; Index : INTEGER) : HANDLE;
  8.  
  9. Returns the number of fields in the record connected to RecordHandle.
  10.  
  11. NumFields(RecordHandle : HANDLE) : INTEGER;
  12.  
  13. Returns the number of records attached to the object connected to ObjectHandle. If ObjectHandle = nil, returns the number of records in the active drawing.
  14.  
  15. NumRecords(ObjectHandle : HANDLE) : INTEGER;
  16.  
  17. Given a search criteria, EvalStr will return the string result of that criteria.
  18.  
  19. EvalStr(ObjectHandle : HANDLE; SearchCriteria : STRING) : STRING;
  20.  
  21. Given a search criteria, Eval will return the value of that criteria.
  22.  
  23. Eval(ObjectHandle : HANDLE; SearchCriteria : STRING) : REAL;
  24.  
  25. Assigns a field a value of a previously created record assigned to an object
  26.  
  27. SetRField(h : Handle; format, field, value : STRING);
  28.  
  29. Assigns a record to the object that is specified by the ObjectHandle and the type of record by TheFormat
  30.  
  31. SetRecord(ObjectHandle : HANDLE; TheFormat : STRING);
  32.  
  33. Assigns a new field to a format. Creates a new format if one does not exist by that name.
  34.  
  35. NewField(Format,FieldName,FieldValue : STRING; NumericForm,Accuracy : INTEGER);
  36.  
  37.